home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / other / tandem / teaching / 3.asm < prev    next >
Assembly Source File  |  1999-09-06  |  168b  |  10 lines

  1. * 3.asm    demonstrate the MOVE opcode     version 0.00   1.9.97
  2.  
  3.  MOVE.L #$22222222,D0
  4.  MOVE.W #$3333,D0
  5.  MOVE.B #$AA,D0
  6.  MOVE.L D0,D1
  7.  MOVE.L #4,A0
  8.  MOVE.L 4,A0
  9.  RTS
  10.